From bb727d5d79ce7a1a71983e5c7e3079ab6a4674cc Mon Sep 17 00:00:00 2001 From: tsteven4 Date: Mon, 4 Dec 2017 15:43:32 -0700 Subject: [PATCH] add utf8 file name test to windows appveyor builds. (#138) --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 1eb200db4..67c41b736 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -68,5 +68,7 @@ test_script: # in this case making sure the last command succeeds is not sufficient. # see https://help.appveyor.com/discussions/problems/10014-false-build-fail-status C:\msys64\usr\bin\bash.exe -lc "cd $env:projdir; PNAME=./release/GPSBabel.exe GBTEMP=./gbtemp ./testo 2>&1" + if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) } + C:\msys64\usr\bin\bash.exe -lc "cd $env:projdir; PNAME=./release/GPSBabel.exe GBTEMP=./gbtemp ./test_encoding_utf8 2>&1" Write-Host "Finished test_script with exit status $LastExitCode" if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) } -- 2.30.2